home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / time / RCS / Time_GetTime.c,v < prev    next >
Text File  |  1991-04-22  |  2KB  |  77 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     91.04.21.22.43.56;  author kupfer;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Time_GetTime library routine.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * Time_GetTime.c --
  28.  *
  29.  *    Time_GetTime library routine.  
  30.  *
  31.  * Copyright 1991 Regents of the University of California
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that this copyright
  35.  * notice appears in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  */
  40.  
  41. #ifndef lint
  42. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.5 91/02/09 13:24:44 ouster Exp $ SPRITE (Berkeley)";
  43. #endif /* not lint */
  44.  
  45. #include <spriteTime.h>
  46. #include <sys/time.h>
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * Time_GetTime --
  53.  *
  54.  *    Return the current time of day.  This is like gettimeofday(), 
  55.  *    but it's defined for use with Time objects.
  56.  *
  57.  * Results:
  58.  *    Returns the current time of day through resultPtr..
  59.  *
  60.  * Side effects:
  61.  *    None.
  62.  *
  63.  *----------------------------------------------------------------------
  64.  */
  65.     
  66. void
  67. Time_GetTime(resultPtr)
  68.     Time *resultPtr;
  69. {
  70.     struct timeval nowUnix;
  71.  
  72.     (void)gettimeofday(&nowUnix, (struct timezone *)0);
  73.     resultPtr->seconds = nowUnix.tv_sec;
  74.     resultPtr->microseconds = nowUnix.tv_usec;
  75. }
  76. @
  77.